home *** CD-ROM | disk | FTP | other *** search
- program FactoryPattern;
-
- uses
- Forms,
- FMain in 'FMain.pas' {FormReportSelection},
- FReportAbstract in 'FReportAbstract.pas' {FormReportAbstract},
- FReportAddressLabel in 'FReportAddressLabel.pas' {FormReportMailingLabels},
- FReportListing in 'FReportListing.pas' {FormReportListing},
- FReportDataExport in 'FReportDataExport.pas' {FormReportDataExport},
- FactoryReport in 'FactoryReport.pas',
- Constants in 'Constants.pas',
- FactoryAbstract in 'FactoryAbstract.pas',
- FactoryConcreteReport in 'FactoryConcreteReport.pas',
- Animals in 'Animals.pas',
- FactoryConcreteAnimal in 'FactoryConcreteAnimal.pas';
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.CreateForm(TFormReportSelection, FormReportSelection);
- Application.Run;
- end.
-
-